runtime.hchan.sendx (field)
13 uses
runtime (current package)
chan.go#L42: sendx uint // send index
chan.go#L238: qp := chanbuf(c, c.sendx)
chan.go#L240: racenotify(c, c.sendx, nil)
chan.go#L243: c.sendx++
chan.go#L244: if c.sendx == c.dataqsiz {
chan.go#L245: c.sendx = 0
chan.go#L336: c.sendx = c.recvx // c.sendx = (c.sendx+1) % c.dataqsiz
chan.go#L735: c.sendx = c.recvx // c.sendx = (c.sendx+1) % c.dataqsiz
select.go#L477: racenotify(c, c.sendx, nil)
select.go#L486: typedmemmove(c.elemtype, chanbuf(c, c.sendx), cas.elem)
select.go#L487: c.sendx++
select.go#L488: if c.sendx == c.dataqsiz {
select.go#L489: c.sendx = 0
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |